OpenExtensionActionPopupCallback

This callback is invoked when an extension wants to open an extension action popup.

The created popup will contain the loaded HTML file configured in the extension's manifest or via the action.setPopup() method. If the extension action does not have a popup, then this callback is not invoked, and the action.onClicked event is dispatched instead.

An extension action popup browser is closed when a parent browser is closed.

If you need to open a popup that is created by the extension itself, use com.teamdev.jxbrowser.extensions.callback.OpenExtensionPopupCallback.

Since

8.0.0

Inheritors

Types

Link copied to clipboard
An action providing a response to the OpenExtensionActionPopupCallback.
Link copied to clipboard
interface Params
The parameters of the OpenExtensionActionPopupCallback.

Functions

Link copied to clipboard
abstract fun on(params: P, tell: R)
Invoked when the callback needs a response for the given callback parameters.